From 155cef4500f3e4856e26c7f89ae9fee998874ce6 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 1 Mar 2026 21:09:31 +0100 Subject: [PATCH] Enityt comment --- AyCode.Interfaces/EntityComment/IEntityComment.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 AyCode.Interfaces/EntityComment/IEntityComment.cs 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; } + } +}