yavsc/Yavsc/Model/Billing/EstimateAgreement.cs

12 lines
230 B
C#
Raw Normal View History

2016-05-17 18:22:18 +02:00
using System;
2016-07-27 10:55:44 +02:00
using System.ComponentModel.DataAnnotations;
2016-05-17 18:22:18 +02:00
2016-06-14 03:37:57 +02:00
namespace Yavsc.Models.Billing
2016-05-17 18:22:18 +02:00
{
2016-07-27 10:55:44 +02:00
public partial class Contract : Estimate
2016-05-17 18:22:18 +02:00
{
2016-07-27 10:55:44 +02:00
[Required]
2016-05-17 18:22:18 +02:00
public DateTime ClientValidationDate { get; set; }
}
}