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