DocSpace-buildtools/products/ASC.Calendar/Server/Models/OutsideEventModel.cs

10 lines
219 B
C#
Raw Normal View History

namespace ASC.Calendar.Models
2021-05-17 18:35:23 +00:00
{
public class OutsideEventModel
{
public string CalendarGuid { get; set; }
public string EventGuid { get; set; }
public string Ics { get; set; }
}
}