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

15 lines
317 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 OutsideEventModel
{
public string CalendarGuid { get; set; }
public string EventGuid { get; set; }
public string Ics { get; set; }
}
}