// *********************************************************************** // Assembly : Inno.Api // Author : FH // Created : 01-01-2022 // // Last Modified By : FH // Last Modified On : 01-31-2022 // *********************************************************************** // // Copyright © FCS 2015-2022 // // // *********************************************************************** namespace FCS.Virk.CvrModels { /// /// Class CvrStatus. /// public class CvrStatus { /// /// Gets or sets the last update. /// /// The last update. public string LastUpdate { get; set; } = ""; /// /// Gets or sets the status. /// /// The status. public string Status { get; set; } = "LUKKET"; /// /// Gets or sets the period. /// /// The period. public CvrPeriod Period { get; set; } = new(); } }