mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +00:00
20 lines
429 B
C#
20 lines
429 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials
|
|
{
|
|
public class SourceListConfigProperties
|
|
{
|
|
[JsonProperty(Required= Required.Always)]
|
|
public uint Number { get; set; }
|
|
[JsonProperty(Required= Required.Always)]
|
|
public string SourceKey { get; set; }
|
|
public string AltName { get; set; }
|
|
public string AltIcon { get; set; }
|
|
|
|
public SourceListConfigProperties()
|
|
{
|
|
AltName = "";
|
|
AltIcon = "";
|
|
}
|
|
}
|
|
} |