namespace CMSMicroservice.Application.AppVersionCQ.Queries.GetAppVersion;
///
/// Query برای دریافت آخرین نسخه یک اپلیکیشن
///
public record GetAppVersionQuery(string AppName, string? CurrentClientVersion = null) : IRequest;
///
/// DTO برای اطلاعات نسخه اپلیکیشن
///
public record AppVersionDto
{
public bool Found { get; init; }
public string AppName { get; init; } = string.Empty;
public string CurrentVersion { get; init; } = string.Empty;
public string MinRequiredVersion { get; init; } = string.Empty;
public bool RequiresFullCacheClear { get; init; }
public bool RequiresUpdate { get; init; }
public string? UpdateMessage { get; init; }
public string? ReleaseNotes { get; init; }
public DateTime? LastUpdated { get; init; }
}