Sieve/SieveUnitTests/Entities/Comment.cs

10 lines
153 B
C#
Raw Normal View History

2018-05-15 01:34:37 +02:00
namespace SieveUnitTests.Entities
2018-02-13 23:43:33 +01:00
{
2018-05-15 01:34:37 +02:00
public class Comment
2018-02-13 23:43:33 +01:00
{
public int Id { get; set; }
public string Text { get; set; }
}
}