16 lines
368 B
C#
16 lines
368 B
C#
using LMS.Common.Enums;
|
||
|
||
namespace LMS.Repository.DTO.OptionDto;
|
||
|
||
public class OptionsDto
|
||
{
|
||
public required string Key { get; set; } = string.Empty;
|
||
|
||
/// <summary>
|
||
/// Value of the option,这个值是一个json字符串
|
||
/// </summary>
|
||
public string? Value { get; set; }
|
||
|
||
public OptionTypeEnum Type { get; set; } = OptionTypeEnum.String;
|
||
}
|