This commit is contained in:
21
server/AyaNova/models/ContractServiceRate.cs
Normal file
21
server/AyaNova/models/ContractServiceRate.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace AyaNova.Models
|
||||
{
|
||||
public class ContractServiceRate
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public uint Concurrency { get; set; }
|
||||
|
||||
[Required]
|
||||
public long ContractId { get; set; }
|
||||
[Required]
|
||||
public long ServiceRateId { get; set; }
|
||||
|
||||
[JsonIgnore]
|
||||
public Contract Contract { get; set; }
|
||||
|
||||
}//eoc
|
||||
|
||||
}//eons
|
||||
Reference in New Issue
Block a user