ApplicationRepository.Models.CalendarEvent.CalendarEvent C# (CSharp) 메소드

CalendarEvent() 공개 메소드

public CalendarEvent ( ) : System
리턴 System
        public CalendarEvent()
        {
            this.Guests = new HashSet<Guest>();
            this.Notifications = new HashSet<Notification>();
            this.Repeatables = new HashSet<Repeatable>();
        }
CalendarEvent