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

16 lines
363 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
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; }
}
}