DocSpace-client/web/ASC.Web.Core/Calendars/ITodo.cs

28 lines
561 B
C#
Raw Normal View History

2019-06-07 08:59:07 +00:00
namespace ASC.Web.Core.Calendars
2019-08-15 12:04:42 +00:00
{
2019-06-07 08:59:07 +00:00
public class TodoContext : ICloneable
{
#region ICloneable Members
public object Clone()
{
return this.MemberwiseClone();
}
#endregion
}
2020-09-29 12:27:28 +00:00
public interface ITodo : IICalFormatView
2019-06-07 08:59:07 +00:00
{
string Id { get; }
string Uid { get; }
string CalendarId { get; }
string Name { get; }
string Description { get; }
Guid OwnerId { get; }
DateTime UtcStartDate { get; }
DateTime Completed { get; }
}
}