using System.ComponentModel.DataAnnotations; using Quadarax.Foundation.Core.Data.Entity; namespace qdr.fnd.core.test.Repositories.Fakes { public class TestDao : Entity { [Required] [MaxLength(100)] public string Name { get; set; } = null!; [Required] [MaxLength(100)] public string Value { get; set; } = null!; } }