mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-15 09:17:13 +08:00
9 lines
162 B
C#
9 lines
162 B
C#
namespace BetterGenshinImpact.Model;
|
|
|
|
public class Notice
|
|
{
|
|
public string Version { get; set; } = string.Empty;
|
|
public int Gray { get; set; } = 10;
|
|
}
|
|
|