// *********************************************************************** // Assembly : Inno.Api // Author : FH // Created : 01-01-2022 // // Last Modified By : FH // Last Modified On : 01-09-2022 // *********************************************************************** // // Copyright © FCS 2015-2022 // // // *********************************************************************** namespace FCS.Virk.CvrModels { /// /// Class CvrPeriod. /// public class CvrPeriod { /// /// Gets or sets the start date. /// /// The start date. public string StartDate { get; set; } = ""; /// /// Gets or sets the end date. /// /// The end date. public string EndDate { get; set; } = ""; } }