mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-22 13:32:33 +01:00
10 lines
153 B
C#
10 lines
153 B
C#
namespace SieveUnitTests.Entities
|
|
{
|
|
public class Comment
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Text { get; set; }
|
|
}
|
|
}
|