using AyCode.Interfaces.Entities; using AyCode.Interfaces.TimeStampInfo; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AyCode.Interfaces.EntityComment { public interface IEntityComment { public string Comment { get; set; } } }