mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-22 05:22:57 +01:00
14 lines
288 B
C#
14 lines
288 B
C#
using System;
|
|
using Sieve.Attributes;
|
|
|
|
namespace SieveUnitTests.Entities
|
|
{
|
|
public class BaseEntity
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[Sieve(CanFilter = true, CanSort = true)]
|
|
public DateTimeOffset DateCreated { get; set; } = DateTimeOffset.UtcNow;
|
|
}
|
|
}
|