26 lines
600 B
C#
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
|