Attr.cs 858 B

12345678910111213141516171819202122232425262728
  1. namespace Tede.Data.Tests.Mocks
  2. {
  3. public class Attr
  4. {
  5. public const string Id = nameof(TestTableInfo.Id);
  6. public const string Guid = nameof(TestTableInfo.Guid);
  7. public const string LastModifiedDate = nameof(TestTableInfo.LastModifiedDate);
  8. public const string TypeVarChar100 = nameof(TestTableInfo.TypeVarChar100);
  9. public const string TypeVarCharDefault = nameof(TestTableInfo.TypeVarCharDefault);
  10. public const string TypeBool = nameof(TestTableInfo.TypeBool);
  11. public const string Content = nameof(TestTableInfo.Content);
  12. public const string Num = nameof(TestTableInfo.Num);
  13. public const string Currency = nameof(TestTableInfo.Currency);
  14. public const string Date = nameof(TestTableInfo.Date);
  15. public const string IsLockedOut = "IsLockedOut";
  16. }
  17. }