ApplicationRepository.Models.CalendarEvent.CalendarEvent C# (CSharp) Method

CalendarEvent() public method

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