This commit is contained in:
2021-03-07 19:06:20 +00:00
parent 40ad1056b0
commit 76f2d7345f
9 changed files with 54 additions and 11 deletions

View File

@@ -1,5 +1,6 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using AyaNova.Biz;
using Newtonsoft.Json;
@@ -16,6 +17,8 @@ namespace AyaNova.Models
public decimal OverridePct { get; set; }
[Required]
public ContractOverrideType OverrideType { get; set; }
[NotMapped]
public string OverrideTypeViz { get; set; }
[Required]
public List<string> Tags { get; set; }