1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.Entities
- {
- public class TSYS_LicenseLargeScreenTemplate
- {
- public string C_LicenseCode { get; set; }
- public string C_LargeScreenTemplateCode { get; set; }
- public string C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- public string C_Creator { get; set; }
- }
- }
|