14 lines
294 B
C#
14 lines
294 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Moonlight.Api.Database.Entities;
|
|
|
|
public class SettingsOption
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[MaxLength(256)]
|
|
public required string Key { get; set; }
|
|
|
|
[MaxLength(4096)]
|
|
public required string Value { get; set; }
|
|
} |