using System; using System.Runtime.Serialization; using Umbraco.Core.Models.EntityBase; namespace Umbraco.Core.Models { /// /// Represents a Stylesheet Property /// /// /// Properties are always formatted to have a single selector, so it can be used in the backoffice /// [Serializable] [DataContract(IsReference = true)] public class StylesheetProperty : IValueObject { public StylesheetProperty(string @alias, string value) { Alias = alias; Value = value; } public string Alias { get; set; } public string Value { get; set; } public bool IsPartOfAtRule { get; set; } } }