using Dpz.Core.EnumLibrary;

namespace Dpz.Core.Public.ViewModel.DynamicPages;

/// <summary>
/// Represents the StyleContent type.
/// </summary>
public class StyleContent : PageContent
{
    /// <summary>
    /// Initializes a new instance of the StyleContent class.
    /// </summary>
    public StyleContent()
    {
        ContentType = PageContentType.Css;
    }
}
评论加载中...