9 lines
192 B
C#
9 lines
192 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Moonlight.Shared.Http.Requests.Admin.Settings;
|
|
|
|
public class SetWhiteLabelingDto
|
|
{
|
|
[Required]
|
|
public string Name { get; set; }
|
|
} |