feat: Project preready
This commit is contained in:
3
LctMonolith/Models/DTO/CreateMissionCategoryDto.cs
Normal file
3
LctMonolith/Models/DTO/CreateMissionCategoryDto.cs
Normal file
@@ -0,0 +1,3 @@
|
||||
namespace LctMonolith.Models.DTO;
|
||||
public class CreateMissionCategoryDto { public string Title { get; set; } = string.Empty; }
|
||||
|
||||
12
LctMonolith/Models/DTO/CreateMissionDto.cs
Normal file
12
LctMonolith/Models/DTO/CreateMissionDto.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace LctMonolith.Models.DTO;
|
||||
|
||||
public class CreateMissionDto
|
||||
{
|
||||
public string Title { get; set; } = string.Empty;
|
||||
public string? Description { get; set; }
|
||||
public Guid MissionCategoryId { get; set; }
|
||||
public Guid? ParentMissionId { get; set; }
|
||||
public int ExpReward { get; set; }
|
||||
public int ManaReward { get; set; }
|
||||
}
|
||||
|
||||
3
LctMonolith/Models/DTO/CreateRankDto.cs
Normal file
3
LctMonolith/Models/DTO/CreateRankDto.cs
Normal file
@@ -0,0 +1,3 @@
|
||||
namespace LctMonolith.Models.DTO;
|
||||
public class CreateRankDto { public string Title { get; set; } = string.Empty; public int ExpNeeded { get; set; } }
|
||||
|
||||
3
LctMonolith/Models/DTO/CreateSkillDto.cs
Normal file
3
LctMonolith/Models/DTO/CreateSkillDto.cs
Normal file
@@ -0,0 +1,3 @@
|
||||
namespace LctMonolith.Models.DTO;
|
||||
public class CreateSkillDto { public string Title { get; set; } = string.Empty; }
|
||||
|
||||
Reference in New Issue
Block a user