18 lines
405 B
C#
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; }
|
|
}
|
|
} |