mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
18 lines
462 B
C#
18 lines
462 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BilibiliEvolved.Build
|
|
{
|
|
class BuilderConfig
|
|
{
|
|
public string Master { get; set; }
|
|
public string Preview { get; set; }
|
|
public string Offline { get; set; }
|
|
public string PreviewOffline { get; set; }
|
|
public string LogoPath { get; set; }
|
|
public string SmallLogoPath { get; set; }
|
|
public string Owner { get; set; }
|
|
}
|
|
}
|