Traveller/scripts/database/dataPackEntity/ZipFileInfo.cs

15 lines
368 B
C#
Raw Normal View History

2024-04-28 13:55:19 +00:00
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; }
}