Traveller/scripts/database/dataPackEntity/ZipFileInfo.cs
2024-04-28 21:55:19 +08:00

15 lines
368 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace ColdMint.scripts.database.dataPackEntity;
public class ZipFileInfo
{
[Key] public string ZipFileName { get; set; }
public string ZipFileMd5 { get; set; }
public int EntryCount { get; set; }
public DateTime CrateTime { get; set; }
public DateTime UpdateTime { get; set; }
}