TestDao.cs 402 B

12345678910111213141516
  1. using System.ComponentModel.DataAnnotations;
  2. using Quadarax.Foundation.Core.Data.Entity;
  3. namespace qdr.fnd.core.test.Repositories.Fakes
  4. {
  5. public class TestDao : Entity<long>
  6. {
  7. [Required]
  8. [MaxLength(100)]
  9. public string Name { get; set; } = null!;
  10. [Required]
  11. [MaxLength(100)]
  12. public string Value { get; set; } = null!;
  13. }
  14. }