refactor: shoved in what i wanted to shove
This commit is contained in:
9
LctMonolith/Models/Database/MissionCategory.cs
Normal file
9
LctMonolith/Models/Database/MissionCategory.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace LctMonolith.Models.Database;
|
||||
|
||||
public class MissionCategory
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string Title { get; set; } = string.Empty;
|
||||
|
||||
public ICollection<Mission> Missions { get; set; } = new List<Mission>();
|
||||
}
|
||||
Reference in New Issue
Block a user