12345678910111213141516171819202122232425262728 |
- namespace Tede.Data.Tests.Mocks
- {
- public class Attr
- {
- public const string Id = nameof(TestTableInfo.Id);
- public const string Guid = nameof(TestTableInfo.Guid);
- public const string LastModifiedDate = nameof(TestTableInfo.LastModifiedDate);
- public const string TypeVarChar100 = nameof(TestTableInfo.TypeVarChar100);
- public const string TypeVarCharDefault = nameof(TestTableInfo.TypeVarCharDefault);
- public const string TypeBool = nameof(TestTableInfo.TypeBool);
- public const string Content = nameof(TestTableInfo.Content);
- public const string Num = nameof(TestTableInfo.Num);
- public const string Currency = nameof(TestTableInfo.Currency);
- public const string Date = nameof(TestTableInfo.Date);
- public const string IsLockedOut = "IsLockedOut";
- }
- }
|