namespace Mindforge.API.Models.Requests { public class FileCheckRequest { public string FileContent { get; set; } = string.Empty; public string FileName { get; set; } = string.Empty; /// /// Expected values: "language" or "content" /// public string CheckType { get; set; } = string.Empty; } }