123456789101112131415161718192021222324 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmHolidayWeekend
- {
- public int SiteId { get; set; }
- public bool Saturday { get; set; }
- public bool Sunday { get; set; }
- public Nullable<bool> IsUse { get; set; }
-
- public virtual CmSite CmSite { get; set; }
- }
- }
|