mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-22 13:32:33 +01:00
12 lines
202 B
C#
12 lines
202 B
C#
using System;
|
|
using Sieve.Attributes;
|
|
|
|
namespace SieveUnitTests.Entities
|
|
{
|
|
public class Comment : BaseEntity
|
|
{
|
|
[Sieve(CanFilter = true)]
|
|
public string Text { get; set; }
|
|
}
|
|
}
|