17 lines
292 B
C#
17 lines
292 B
C#
|
|
namespace DTS.Storage
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public abstract class Settings
|
|||
|
|
{
|
|||
|
|
public const string Table = "tblSettings";
|
|||
|
|
public enum UserFields
|
|||
|
|
{
|
|||
|
|
PropertyId,
|
|||
|
|
PropertyType,
|
|||
|
|
PropertyValue,
|
|||
|
|
UserId
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|