Files
raven/server/AyaNova/models/ContractServiceRate.cs
2021-03-07 19:06:20 +00:00

26 lines
600 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
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; }
[NotMapped]
public string ServiceRateViz { get; set; }
[JsonIgnore]
public Contract Contract { get; set; }
}//eoc
}//eons