WIP
This commit is contained in:
18
KTUSAPS.Data/Model/Solution.cs
Normal file
18
KTUSAPS.Data/Model/Solution.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user