mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-01 10:28:11 -05:00
12 lines
331 B
C#
12 lines
331 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Cleanuparr.Infrastructure.Models;
|
|
|
|
public sealed record AppStatus(
|
|
[property: JsonPropertyName("currentVersion")] string? CurrentVersion,
|
|
[property: JsonPropertyName("latestVersion")] string? LatestVersion
|
|
)
|
|
{
|
|
public static readonly AppStatus Empty = new(null, null);
|
|
}
|