12345678910111213141516171819202122232425262728 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class FmsConstructionCodeProgress
- {
- public FmsConstructionCodeProgress()
- {
- this.FmsConstruction = new HashSet<FmsConstruction>();
- }
-
- public short ProgressId { get; set; }
- public string Name { get; set; }
- public string Description { get; set; }
-
- public virtual ICollection<FmsConstruction> FmsConstruction { get; set; }
- }
- }
|