DocSpace-client/products/ASC.Calendar/Server/Models/CaldavCalendarModel.cs

14 lines
278 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 CaldavCalendarModel
{
public string CalendarId { get; set; }
public List<string> Team { get; set; }
}
}