14 lines
477 B
C#
14 lines
477 B
C#
namespace Netina.Domain.Dtos.ResponseDtos;
|
|
|
|
public class AdminChangeLogResponseDto
|
|
{
|
|
public string Version { get; set; } = string.Empty;
|
|
public double VersionNumber { get; set; }
|
|
public string VersionName { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public List<string> Features { get; set; } = new();
|
|
public List<string> BugFixes { get; set; } = new();
|
|
|
|
public bool IsNewVersion { get; set; } = false;
|
|
|
|
} |