using System; using System.ComponentModel.DataAnnotations; using System.Text.Json.Serialization; using Model.Base; namespace Dto.Client { public class NoticeGroupDto { public string? id { set; get; } [JsonPropertyName("group_name")] public string? groupName { set; get; } [JsonPropertyName("group_remark")] public string? groupRemark { set; get; } [JsonPropertyName("group_kind")] public int groupKind { set; get; } [JsonPropertyName("group_project")] public int groupProject { set; get; } public List child { set; get; } } public class NoticeInfoDto { [JsonPropertyName("api_router")] public string? apiRouter { set; get; } [JsonPropertyName("api_port")] public string? apiPort { set; get; } [JsonPropertyName("api_host")] public string? apiHost { set; get; } [JsonPropertyName("api_key")] public string? apiKey { set; get; } [JsonPropertyName("api_name")] public string? apiName { set; get; } [JsonPropertyName("api_method")] public string? apiMethod { set; get; } [JsonPropertyName("api_path")] public string? apiPath { set; get; } [JsonPropertyName("api_en_name")] public string? apiEnName { set; get; } } }