This repository has been archived on 2025-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
Files
KTUSA-PS/KTUSAPS.Data/Model/Solution.cs
Karolis2011 3e82ea9392 WIP
2021-09-08 13:38:31 +03:00

18 lines
405 B
C#

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; }
}
}