DocSpace-buildtools/products/ASC.Calendar/Server/Models/СalendarUrlModel.cs
2020-03-13 11:53:32 +03:00

38 lines
861 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using ASC.Api.Core;
using ASC.Web.Core.Calendars;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Threading.Tasks;
using static ASC.Calendar.Controllers.CalendarController;
namespace ASC.Calendar.Models
{
public class СalendarUrlModel
{
[DataMember(Name = "ical_url", Order = 1)]
public string ICalUrl { get; set; }
[DataMember(Name = "name", Order = 0)]
public string Name { get; set; }
[DataMember(Name = "text_color", Order = 2)]
public string TextColor { get; set; }
[DataMember(Name = "background_color", Order = 50)]
public string BackgroundColor { get; set; }
/*public static object GetSample()
{
return new
{
};
}*/
}
}