validation & client approval dates

This commit is contained in:
Paul Schneider 2016-10-20 20:15:48 +02:00
commit 4a252bf5b2
5 changed files with 1033 additions and 1 deletions

View file

@ -1,5 +1,6 @@
namespace Yavsc.Models.Billing
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
@ -64,5 +65,9 @@ namespace Yavsc.Models.Billing
{
get; set;
}
public DateTime LatestValidationDate { get; set; }
public DateTime ClientApprouvalDate { get; set; }
}
}