Files
lct2025-lonolith/LctMonolith/Models/DTO/MissionValidationResult.cs
2025-09-30 22:46:22 +03:00

9 lines
220 B
C#

namespace LctMonolith.Models.DTO;
public class MissionValidationResult
{
public bool IsValid { get; set; }
public string Message { get; set; } = string.Empty;
public int? SuggestedExperience { get; set; }
}