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

16 lines
363 B
C#
Raw Normal View History

2021-05-17 18:35:23 +00:00
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; }
}
}