using System; using System.ComponentModel.DataAnnotations; namespace KTUSAPS.Data.Model { public class Solution { public int Id { get; set; } [MaxLength] public string SolutionLt { get; set; } [MaxLength] public string SolutionEn { get; set; } public PublishedProblem Problem { get; set; } public DateTime Created { get; set; } } }