12345678910111213141516171819202122 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class FmsCompanyEstimationCodeClass
- {
- public int SiteId { get; set; }
- public int CompanyEstimationClassId { get; set; }
- public string Name { get; set; }
- public Nullable<bool> IsUse { get; set; }
- }
- }
|