Fixed import and export

This commit is contained in:
Marcel Baumgartner
2023-04-26 18:13:19 +02:00
parent 762d487ec9
commit df01d0babd
4 changed files with 39 additions and 72 deletions

View File

@@ -1,7 +1,10 @@
namespace Moonlight.App.Database.Entities;
using Newtonsoft.Json;
namespace Moonlight.App.Database.Entities;
public class DockerImage
{
[JsonIgnore]
public int Id { get; set; }
public bool Default { get; set; } = false;
public string Name { get; set; } = "";