Skip to content

DataBase class

A user database.

public class DataBase : BaseEntity

Public Members

name description
DataBase() The default constructor.
Accounts { get; set; } Account list of users who have access to the database.
Active { get; set; } Wether the database is active or not. If true, the customer is currently working online (in cloud). If false, the customer is working offline and database's data is to be considered stale.
CustomerServer { get; set; } The CustomerServer hosting the database. Expandable.
CustomerServerId { get; set; } Unique id of the CustomerServer on which the database is hosted.
Description { get; set; } Database description. Normally, it holds the customer name.
Name { get; set; } Database name.

See Also