16 lines
331 B
C#
16 lines
331 B
C#
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; }
|
|
}
|
|
}
|