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/Issue.cs
Karolis2011 3e82ea9392 WIP
2021-09-08 13:38:31 +03:00

25 lines
621 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KTUSAPS.Data.Model
{
public class Issue
{
public int Id { get; set; }
public string Email { get; set; }
public bool Anonimous { get; set; }
public bool Publishable { get; set; }
public bool Solved { get; set; } = false;
public DateTime Created { get; set; }
[MaxLength]
public string Description { get; set; }
public PublishedProblem Problem { get; set; }
}
}