using System;
using System.Collections.Generic;
namespace API.DTOs.Theme;
public class DownloadableSiteThemeDto
{
///
/// Theme Name
///
public string Name { get; set; }
///
/// Url to download css file
///
public string CssUrl { get; set; }
public string CssFile { get; set; }
///
/// Url to preview image
///
public IList PreviewUrls { get; set; }
///
/// If Already downloaded
///
public bool AlreadyDownloaded { get; set; }
///
/// Sha of the file
///
public string Sha { get; set; }
///
/// Path of the Folder the files reside in
///
public string Path { get; set; }
///
/// Author of the theme
///
/// Derived from Readme
public string Author { get; set; }
///
/// Last version tested against
///
/// Derived from Readme
public string LastCompatibleVersion { get; set; }
///
/// If version compatible with version
///
public bool IsCompatible { get; set; }
///
/// Small blurb about the Theme
///
public string Description { get; set; }
}