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/IssueType.cs
Karolis Kundrotas ba413d4330 Controllers
2021-10-29 09:17:17 +03:00

19 lines
375 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KTUSAPS.Data.Model
{
public class IssueType
{
public int Id { get; set; }
public string Name { get; set; }
public string NameEn { get; set; }
public virtual HashSet<Issue> Issues { get; set; }
}
}