blob: ca84d5a087be47656d8462848fed47bb171aa4da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
namespace CrupestApi.Commons.Crud.Tests;
public class TestEntity
{
    [Column(NotNull = true)]
    public string Name { get; set; } = default!;
    [Column(NotNull = true)]
    public int Age { get; set; }
    [Column]
    public float? Height { get; set; }
    public string NonColumn { get; set; } = "Not A Column";
}
 
  |