feat: 框架搭建

This commit is contained in:
橙子
2024-10-14 23:31:08 +08:00
parent 36246c2945
commit 1c6a795061
17 changed files with 212 additions and 10 deletions

View File

@@ -0,0 +1,15 @@
using System.ComponentModel.DataAnnotations;
namespace Yi.Framework.DigitalCollectibles.Domain.Shared.Consts;
/// <summary>
/// 稀有度枚举
/// </summary>
public enum RarityEnum
{
[Display(Name = "普通")] Ordinary = 0,
[Display(Name = "高级")] Senior = 1,
[Display(Name = "稀有")] Rare = 2,
[Display(Name = "珍品")] Gem = 3,
[Display(Name = "传说")] Legend = 4
}

View File

@@ -10,7 +10,6 @@
</ItemGroup>
<ItemGroup>
<Folder Include="Consts\" />
<Folder Include="Dtos\" />
<Folder Include="Enums\" />
<Folder Include="Etos\" />