Files
lct2025-lonolith/LctMonolith/Models/DTO/MissionValidationResult.cs
2025-10-01 01:56:05 +03:00

9 lines
228 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; }
}