18 lines
597 B
C#
18 lines
597 B
C#
|
|
using DTS.Slice.Users;
|
|||
|
|
using DataPROWin7.DataModel;
|
|||
|
|
using DTS.Common.ISO;
|
|||
|
|
using DTS.Common.Licensing.Messages;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.DataModel
|
|||
|
|
{
|
|||
|
|
public static class ApplicationProperties
|
|||
|
|
{
|
|||
|
|
public static User CurrentUser { get; set; }
|
|||
|
|
public static DASFactory DASFactory { get; set; }
|
|||
|
|
public static User CurrentView { get; set; }
|
|||
|
|
public static ISO13499FileDb IsoDb { get; set; }
|
|||
|
|
public static ValidationResult LicenseValidationResult { get; set; }
|
|||
|
|
public static bool CanCurrentUserCommitChannelCodes { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|