generated from karsten.jeppesen/KAJE-Template
Quizzer-8: Migrating to .NET 10
This commit is contained in:
23
Quizzer-8/Quizzer/Models/Cat.cs
Normal file
23
Quizzer-8/Quizzer/Models/Cat.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using Dapper.Contrib.Extensions;
|
||||
|
||||
namespace Quizzer.Models
|
||||
{
|
||||
public class Cat
|
||||
{
|
||||
[Key]
|
||||
public string CId { get; set; }
|
||||
public string UID { get; set; }
|
||||
public string CParentId { get; set; }
|
||||
public string Txt { get; set; }
|
||||
public string Descr { get; set; }
|
||||
|
||||
public Cat()
|
||||
{
|
||||
CId = String.Empty;
|
||||
UID = String.Empty;
|
||||
CParentId = String.Empty;
|
||||
Txt = String.Empty;
|
||||
Descr = String.Empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user