namespace CellularManagement.Application.Features.ProtocolVersions.Queries.GetProtocolVersionById; /// /// 根据ID获取协议版本响应 /// public class GetProtocolVersionByIdResponse { /// /// 协议版本ID /// public string ProtocolVersionId { get; set; } = null!; /// /// 版本名称 /// public string Name { get; set; } = null!; /// /// 版本号 /// public string Version { get; set; } = null!; /// /// 版本描述 /// public string? Description { get; set; } /// /// 是否启用 /// public bool IsEnabled { get; set; } /// /// 发布日期 /// public DateTime? ReleaseDate { get; set; } /// /// 是否强制更新 /// public bool IsForceUpdate { get; set; } /// /// 最低支持版本 /// public string? MinimumSupportedVersion { get; set; } /// /// 创建时间 /// public DateTime CreatedAt { get; set; } /// /// 更新时间 /// public DateTime? UpdatedAt { get; set; } }