mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-16 01:40:46 +08:00
19 lines
436 B
C#
19 lines
436 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace MaaBuilder.Models;
|
|
|
|
public record Checksum
|
|
{
|
|
[JsonPropertyName("file_name")]
|
|
public string FileName { get; set; }
|
|
|
|
[JsonPropertyName("package_type")]
|
|
public string PackageType { get; set; }
|
|
|
|
[JsonPropertyName("file_hash")]
|
|
public string FileHash { get; set; }
|
|
|
|
[JsonPropertyName("file_identity")]
|
|
public string FileIdentity { get; set; }
|
|
}
|