LicenseInfo.cs
349 Bytes
using System;
namespace Hh.Mes.POJO.LicenseEntity
{
public class LicenseInfo
{
public string Sn { get; set; }
public DateTime expiration_time { get; set; }
public DateTime ExpiringDate { get; set; }
public DateTime Created { get; set; }
public string CreatedBy { get; set; }
}
}