V 0.0.1 添加软件的基础配置
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace LMS.Repository.Options;
|
||||
|
||||
public class ModofyOptionsModel
|
||||
{
|
||||
[Required]
|
||||
public required string Key { get; set; }
|
||||
|
||||
[Required]
|
||||
public string Value { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user