This commit is contained in:
Karolis2011
2021-09-08 13:38:31 +03:00
parent b1935f0ffb
commit 3e82ea9392
13 changed files with 2297 additions and 46 deletions

View File

@@ -0,0 +1,18 @@
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; }
}
}