13 lines
205 B
C#
13 lines
205 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ASPBaseOIDC.Configuration.Dto;
|
|
|
|
public class ChangeUiThemeInput
|
|
{
|
|
[Required]
|
|
[StringLength(32)]
|
|
public string Theme { get; set; }
|
|
}
|
|
|
|
|