Wonky.Client/Wonky.Entity/Configuration/AppInfo.cs

45 lines
1.4 KiB
C#
Raw Normal View History

2022-07-04 11:14:24 +02:00
// Copyright (C) 2022 FCS Frede's Computer Services.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see [https://www.gnu.org/licenses/agpl-3.0.en.html]
//
2022-06-08 18:52:00 +02:00
namespace Wonky.Entity.Configuration;
public class AppInfo
{
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application version
/// </summary>
2023-03-18 16:01:22 +01:00
public string Version { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application name
/// </summary>
2023-03-18 16:01:22 +01:00
public string Name { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application picture name
/// </summary>
2023-03-18 16:01:22 +01:00
public string Image { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application beta version flag
/// </summary>
2022-07-13 12:54:54 +02:00
public bool Rc { get; set; }
2022-07-07 08:08:18 +02:00
/// <summary>
/// Sandbox version
/// </summary>
2022-07-13 12:54:54 +02:00
public bool Sandbox { get; set; }
2022-06-08 18:52:00 +02:00
}