DocSpace-buildtools/products/ASC.Calendar/Server/Models/CaldavEventModel.cs
SuhorukovAnton 735a9b60cf net6: warning CA1416
also remove unnecessary usings
2021-10-13 11:07:03 +03:00

13 lines
300 B
C#

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