1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.ComponentModel.DataAnnotations;
- namespace Dfs.WayneChina.PosModelMini
- {
- public class SiteDevice
- {
-
-
-
- public Guid Id { get; set; }
-
-
-
- public SiteDeviceType DeviceType { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
- [MaxLength(100)]
- public string Brand { get; set; }
-
-
-
- [MaxLength(100)]
- public string Model { get; set; }
-
-
-
-
- public string HardwareIdentity { get; set; }
-
-
-
-
-
- public string PosDeviceFdcClientId { get; set; }
-
-
-
- public virtual Guid AsSubjectOfBusinessUnitId { get; set; }
-
-
-
-
-
-
-
- public virtual BusinessUnit AsSubjectOfBusinessUnit { get; set; }
- }
- }
|