DocSpace-client/products/ASC.Calendar/Server/Models/СalendarUrlModel.cs
SuhorukovAnton 735a9b60cf net6: warning CA1416
also remove unnecessary usings
2021-10-13 11:07:03 +03:00

22 lines
520 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 System.Runtime.Serialization;
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; }
}
}