CalendarConfigurationEvent.cs 289 B

123456789101112131415
  1. namespace PRSDesktop
  2. {
  3. public interface ICalendarConfigurationArgs
  4. {
  5. }
  6. public class CalendarConfigurationArgs : ICalendarConfigurationArgs
  7. {
  8. }
  9. public delegate void CalendarConfigurationEvent(object sender, CalendarConfigurationArgs args);
  10. }