Traveller/scripts/database/dataPackEntity/SpriteInfo.cs

26 lines
671 B
C#
Raw Normal View History

2024-04-28 13:55:19 +00:00
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ColdMint.scripts.database.dataPackEntity;
public class SpriteInfo
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Index { get; set; }
/// <summary>
/// <para>The file name is the Id of the Sprite</para>
/// <para>文件名就是精灵的Id</para>
/// </summary>
public string FileName { get; set; }
public string FullName { get; set; }
public string ZipFileName { get; set; }
public string Namespace { get; set; }
public DateTime CrateTime { get; set; }
}