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

13 lines
300 B
C#
Raw Normal View History

using System.Collections.Generic;
2021-05-17 18:35:23 +00:00
namespace ASC.Calendar.Models
{
public class CaldavEventModel
{
public string CalendarId { get; set; }
public string Uid { get; set; }
public int Alert { get; set; }
public List<string> Responsibles { get; set; }
}
}