11 lines
238 B
C#
11 lines
238 B
C#
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; } = "";
|
|
} |