WIP
This commit is contained in:
24
KTUSAPS.Data/Model/Issue.cs
Normal file
24
KTUSAPS.Data/Model/Issue.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user