DocSpace-client/products/ASC.Calendar/Server/Models/OutsideEventModel.cs
Vashchuk Nikita 94047ab0a1 Fix Calendar
2021-05-17 21:35:23 +03:00

15 lines
317 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ASC.Calendar.Models
{
public class OutsideEventModel
{
public string CalendarGuid { get; set; }
public string EventGuid { get; set; }
public string Ics { get; set; }
}
}