2018-04-19 11:39:51 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2018-11-17 12:43:11 +09:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2018-04-19 11:39:51 -05:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace BTCPayServer.Services
|
|
|
|
|
{
|
|
|
|
|
public class ThemeSettings
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Populate)]
|
2018-11-17 12:43:11 +09:00
|
|
|
|
[MaxLength(500)]
|
|
|
|
|
[Display(Name = "Custom bootstrap CSS file")]
|
2018-04-19 11:39:51 -05:00
|
|
|
|
public string BootstrapCssUri { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Populate)]
|
|
|
|
|
public string CreativeStartCssUri { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|