Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. public partial class Device
  2. {
  3. public int SolutionId { get; set; }
  4. public string SiteId { get; set; }
  5. public string Name { get; set; }
  6. public int SysId { get; set; }
  7. public Nullable<int> SysType { get; set; }
  8. public string SerialNumber { get; set; }
  9. public Nullable<int> ParentId { get; set; }
  10.  
  11. public virtual DeviceModel DeviceModel { get; set; }
  12. public virtual DeviceType DeviceType { get; set; }
  13. public virtual SolutionApplication SolutionApplication { get; set; }
  14. public virtual SolutionType SolutionType { get; set; }
  15. }
  16.  
  17. DeviceModelId, DeviceTypeId, SolutionApplicationId, and SolutionTypeId
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement