using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ColdMint.scripts.database.dataPackEntity;
///
/// entry table in Zip file
/// Zip文件内的entry表
///
public class ZipEntryInfo
{
///
/// Primary key, auto increment
/// 主键,自动递增
///
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int id { get; set; }
///
/// This record is from that zip file
/// 这段记录是来源于那个zip文件的
///
public string FileName { get; set; }
///
/// The path within the zip file
/// 位于zip文件内的路径
///
public string FullName { get; set; }
public DateTime CrateTime { get; set; }
}