Added database entities, started with node crud
This commit is contained in:
10
MoonlightServers.ApiServer/Database/Entities/StarFolder.cs
Normal file
10
MoonlightServers.ApiServer/Database/Entities/StarFolder.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace MoonlightServers.ApiServer.Database.Entities;
|
||||
|
||||
public class StarFolder
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
public List<Star> Stars { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user