mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-22 13:32:33 +01:00
8 lines
141 B
C#
8 lines
141 B
C#
|
namespace SieveUnitTests.Abstractions.Entity
|
|||
|
{
|
|||
|
public interface IComment: IBaseEntity
|
|||
|
{
|
|||
|
string Text { get; set; }
|
|||
|
}
|
|||
|
}
|