diff --git a/AyCode.Interfaces/EntityComment/IEntityComment.cs b/AyCode.Interfaces/EntityComment/IEntityComment.cs new file mode 100644 index 0000000..d05bd56 --- /dev/null +++ b/AyCode.Interfaces/EntityComment/IEntityComment.cs @@ -0,0 +1,15 @@ +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; } + } +}