15 lines
358 B
C#
15 lines
358 B
C#
namespace TelegramBot.Config;
|
|
|
|
public class AppSettings
|
|
{
|
|
public string? Token { get; init; }
|
|
public string? ApiPath { get; init; }
|
|
public string? StartMessage { get; init; }
|
|
public List<Changelog> Changelog { get; init; } = null!;
|
|
}
|
|
|
|
public class Changelog
|
|
{
|
|
public string? Date { get; init; }
|
|
public string? Caption { get; init; }
|
|
} |