Enityt comment

This commit is contained in:
Adam 2026-03-01 21:09:31 +01:00
parent 6b7f4bf44f
commit 155cef4500
1 changed files with 15 additions and 0 deletions

View File

@ -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; }
}
}