コード例 #1
0
 public CalendarEventsModel(string type, DatesPeriodModel dates, string status)
 {
     this.Type   = type;
     this.Dates  = dates;
     this.Status = status;
 }
コード例 #2
0
 public CalendarEventsWithIdModel(string calendarEventId, string type, DatesPeriodModel dates, string status)
     : base(type, dates, status)
 {
     this.CalendarEventId = calendarEventId;
 }