mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-22 21:42:38 +01:00
16 lines
278 B
C#
16 lines
278 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Sieve.Attributes;
|
|
|
|
namespace SieveUnitTests.Entities
|
|
{
|
|
public class Comment
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Text { get; set; }
|
|
}
|
|
}
|