1234567891011121314151617181920212223 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class FmsInvestmentCost
- {
- public int SiteId { get; set; }
- public int InsvestmentCostId { get; set; }
- public string Name { get; set; }
- public string Comment { get; set; }
- public double InsvestmentCost { get; set; }
- }
- }
|