using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using e_suite.Database.Audit.Models; namespace e_suite.Database.Audit.UnitTests.Helpers.Tables; [Table("RecordedComments", Schema = "IsAudited")] public class RecordedComment : IId { [Key] public long Id { get; set; } [Required, MaxLength(100)] public string Comment { get; set; } = null!; }