2025-03-24 16:53:32 +08:00
|
|
|
|
using LMS.Common.Enums;
|
2024-10-18 12:44:12 +08:00
|
|
|
|
|
2025-05-21 21:28:18 +08:00
|
|
|
|
namespace LMS.Repository.DTO.OptionDto;
|
2024-10-18 12:44:12 +08:00
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
}
|