feat: Project preready

This commit is contained in:
ereshk1gal
2025-10-01 01:42:16 +03:00
parent 06cb66624c
commit 504f03bd32
37 changed files with 1671 additions and 147 deletions

View File

@@ -0,0 +1,3 @@
namespace LctMonolith.Models.DTO;
public class CreateMissionCategoryDto { public string Title { get; set; } = string.Empty; }

View 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; }
}

View File

@@ -0,0 +1,3 @@
namespace LctMonolith.Models.DTO;
public class CreateRankDto { public string Title { get; set; } = string.Empty; public int ExpNeeded { get; set; } }

View File

@@ -0,0 +1,3 @@
namespace LctMonolith.Models.DTO;
public class CreateSkillDto { public string Title { get; set; } = string.Empty; }