ColleagueExt.cs 328 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace HNWD.Pregrant.Model
  3. {
  4. public class ColleagueExt : ModelExtBase<Colleague>
  5. {
  6. public List<WD_DeviceInfo_Simple> deviceInfoSimple = new List<WD_DeviceInfo_Simple>();
  7. public List<WD_StaffInfo_Simple> staffInfoSimple = new List<WD_StaffInfo_Simple>();
  8. }
  9. }