8 lines
202 B
C#
8 lines
202 B
C#
namespace Moonlight.App.Database.Entities;
|
|
|
|
public class ImageVariable
|
|
{
|
|
public int Id { get; set; }
|
|
public string Key { get; set; } = "";
|
|
public string DefaultValue { get; set; } = "";
|
|
} |