blob: ba905e5811988976d48b817c08075ad6634055ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using System;
using System.Collections.Generic;
namespace Gestor.Model.API;
public class Access
{
public long Id { get; set; }
public long CustomerId { get; set; }
public long? ProductId { get; set; }
public long? AgreementId { get; set; }
public long? SchemeId { get; set; }
public decimal? Ammount { get; set; }
public string Status { get; set; }
public IList<AccessControl> Control { get; set; }
public DateTime CurrentDate { get; set; }
}
|