修改问题
This commit is contained in:
parent
b50b2fc5c4
commit
48811946e3
|
|
@ -6,9 +6,6 @@ MinimumVisualStudioVersion = 10.0.40219.1
|
|||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodeRelease", "CodeRelease\CodeRelease.csproj", "{C58D2D43-B90B-4CEA-810F-99027F8F865A}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{74FD82FD-055B-45E9-AE81-0CAFDF083ECB}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
.editorconfig = .editorconfig
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
|
|
|||
|
|
@ -1,38 +1,5 @@
|
|||
|
||||
root = true
|
||||
|
||||
# 全部文件
|
||||
[*]
|
||||
indent_style = space #指定缩进风格,可以是tab(制表符)或space(空格)
|
||||
|
||||
# Xml files
|
||||
[*.xml]
|
||||
indent_size = 2 #定义一个缩进级别的大小。
|
||||
|
||||
[*.cs]
|
||||
end_of_line = lf #指定换行符的类型,可以是lf(Unix/Linux)、crlf(Windows)或cr(老式的Mac OS)。
|
||||
indent_style = space #指定缩进风格,可以是tab(制表符)或space(空格)
|
||||
charset = utf-8 #设置文件字符集为utf-8,在 Linux 系统中,通常推荐使用 UTF-8 而不是 UTF-8 with BOM。添加 BOM 可能会干扰那些不期望在文件开头出现非 ASCII 字节的软件对 UTF-8 的使用。
|
||||
trim_trailing_whitespace = true #指定是否删除行尾的空白字符。
|
||||
insert_final_newline = true #指定文件末尾是否应该插入一个空白行。
|
||||
indent_size = 4
|
||||
# 模式匹配的偏好设置
|
||||
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion # 推荐使用模式匹配而非 is 与类型转换检查
|
||||
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion # 推荐使用模式匹配而非 as 与 null 检查
|
||||
|
||||
# 空检查的偏好设置
|
||||
csharp_style_throw_expression = true:suggestion # 推荐使用 throw 表达式
|
||||
csharp_style_conditional_delegate_call = true:suggestion # 推荐使用条件委托调用
|
||||
|
||||
# 修饰符的偏好设置
|
||||
csharp_preferred_modifier_order = public,private,protected,internal,file,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,required,volatile,async:suggestion # 修饰符的推荐顺序
|
||||
|
||||
# 表达式级别的偏好设置
|
||||
csharp_prefer_braces = true:silent # 推荐使用大括号,即使在可能省略的情况下
|
||||
csharp_style_deconstructed_variable_declaration = true:suggestion # 推荐使用解构变量声明
|
||||
csharp_prefer_simple_default_expression = true:suggestion # 推荐使用简化的默认值表达式
|
||||
csharp_style_prefer_local_over_anonymous_function = true:suggestion # 推荐使用本地函数而非匿名函数
|
||||
csharp_style_inlined_variable_declaration = true:suggestion # 推荐内联变量声明
|
||||
# 首选顶层语句的偏好设置
|
||||
csharp_style_prefer_top_level_statements = true:silent # 推荐使用顶层语句,不强制要求
|
||||
|
||||
|
|
|
|||
|
|
@ -10,25 +10,25 @@ namespace CodeRelease.Model
|
|||
/// 发布的动作
|
||||
/// </summary>
|
||||
[JsonProperty("action")]
|
||||
public required string Action { get; set; }
|
||||
public string Action { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 发布信息
|
||||
/// </summary>
|
||||
[JsonProperty("release")]
|
||||
public required Release Release { get; set; }
|
||||
public Release Release { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库信息
|
||||
/// </summary>
|
||||
[JsonProperty("repository")]
|
||||
public required Repository Repository { get; set; }
|
||||
public Repository Repository { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 发送者信息
|
||||
/// </summary>
|
||||
[JsonProperty("sender")]
|
||||
public required Sender Sender { get; set; }
|
||||
public Sender Sender { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -46,55 +46,55 @@ namespace CodeRelease.Model
|
|||
/// 标签名称
|
||||
/// </summary>
|
||||
[JsonProperty("tag_name")]
|
||||
public required string TagName { get; set; }
|
||||
public string TagName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 目标分支
|
||||
/// </summary>
|
||||
[JsonProperty("target_commitish")]
|
||||
public required string TargetCommitish { get; set; }
|
||||
public string TargetCommitish { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 发布名称
|
||||
/// </summary>
|
||||
[JsonProperty("name")]
|
||||
public required string Name { get; set; }
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 发布描述
|
||||
/// </summary>
|
||||
[JsonProperty("body")]
|
||||
public required string Body { get; set; }
|
||||
public string Body { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 发布URL
|
||||
/// </summary>
|
||||
[JsonProperty("url")]
|
||||
public required string Url { get; set; }
|
||||
public string Url { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 发布HTML URL
|
||||
/// </summary>
|
||||
[JsonProperty("html_url")]
|
||||
public required string HtmlUrl { get; set; }
|
||||
public string HtmlUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// tarball文件URL
|
||||
/// </summary>
|
||||
[JsonProperty("tarball_url")]
|
||||
public required string TarballUrl { get; set; }
|
||||
public string TarballUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// zipball文件URL
|
||||
/// </summary>
|
||||
[JsonProperty("zipball_url")]
|
||||
public required string ZipballUrl { get; set; }
|
||||
public string ZipballUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 上传URL
|
||||
/// </summary>
|
||||
[JsonProperty("upload_url")]
|
||||
public required string UploadUrl { get; set; }
|
||||
public string UploadUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否为草稿
|
||||
|
|
@ -124,13 +124,13 @@ namespace CodeRelease.Model
|
|||
/// 作者信息
|
||||
/// </summary>
|
||||
[JsonProperty("author")]
|
||||
public required Author Author { get; set; }
|
||||
public Author Author { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 资产列表
|
||||
/// </summary>
|
||||
[JsonProperty("assets")]
|
||||
public required List<Asset> Assets { get; set; }
|
||||
public List<Asset> Assets { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -148,13 +148,13 @@ namespace CodeRelease.Model
|
|||
/// 登录名
|
||||
/// </summary>
|
||||
[JsonProperty("login")]
|
||||
public required string Login { get; set; }
|
||||
public string Login { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 登录名称
|
||||
/// </summary>
|
||||
[JsonProperty("login_name")]
|
||||
public required string LoginName { get; set; }
|
||||
public string LoginName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 来源ID
|
||||
|
|
@ -166,31 +166,31 @@ namespace CodeRelease.Model
|
|||
/// 全名
|
||||
/// </summary>
|
||||
[JsonProperty("full_name")]
|
||||
public required string FullName { get; set; }
|
||||
public string FullName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 邮箱
|
||||
/// </summary>
|
||||
[JsonProperty("email")]
|
||||
public required string Email { get; set; }
|
||||
public string Email { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 头像URL
|
||||
/// </summary>
|
||||
[JsonProperty("avatar_url")]
|
||||
public required string AvatarUrl { get; set; }
|
||||
public string AvatarUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// HTML URL
|
||||
/// </summary>
|
||||
[JsonProperty("html_url")]
|
||||
public required string HtmlUrl { get; set; }
|
||||
public string HtmlUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 语言
|
||||
/// </summary>
|
||||
[JsonProperty("language")]
|
||||
public required string Language { get; set; }
|
||||
public string Language { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否为管理员
|
||||
|
|
@ -232,25 +232,25 @@ namespace CodeRelease.Model
|
|||
/// 位置
|
||||
/// </summary>
|
||||
[JsonProperty("location")]
|
||||
public required string Location { get; set; }
|
||||
public string Location { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 个人网站
|
||||
/// </summary>
|
||||
[JsonProperty("website")]
|
||||
public required string Website { get; set; }
|
||||
public string Website { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 描述
|
||||
/// </summary>
|
||||
[JsonProperty("description")]
|
||||
public required string Description { get; set; }
|
||||
public string Description { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 可见性
|
||||
/// </summary>
|
||||
[JsonProperty("visibility")]
|
||||
public required string Visibility { get; set; }
|
||||
public string Visibility { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 关注者数量
|
||||
|
|
@ -274,7 +274,7 @@ namespace CodeRelease.Model
|
|||
/// 用户名
|
||||
/// </summary>
|
||||
[JsonProperty("username")]
|
||||
public required string Username { get; set; }
|
||||
public string Username { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -292,7 +292,7 @@ namespace CodeRelease.Model
|
|||
/// 资产名称
|
||||
/// </summary>
|
||||
[JsonProperty("name")]
|
||||
public required string Name { get; set; }
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 资产大小
|
||||
|
|
@ -316,13 +316,13 @@ namespace CodeRelease.Model
|
|||
/// 资产UUID
|
||||
/// </summary>
|
||||
[JsonProperty("uuid")]
|
||||
public required string Uuid { get; set; }
|
||||
public string Uuid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 浏览器下载URL
|
||||
/// </summary>
|
||||
[JsonProperty("browser_download_url")]
|
||||
public required string BrowserDownloadUrl { get; set; }
|
||||
public string BrowserDownloadUrl { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -340,25 +340,25 @@ namespace CodeRelease.Model
|
|||
/// 拥有者信息
|
||||
/// </summary>
|
||||
[JsonProperty("owner")]
|
||||
public required Owner Owner { get; set; }
|
||||
public Owner Owner { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库名称
|
||||
/// </summary>
|
||||
[JsonProperty("name")]
|
||||
public required string Name { get; set; }
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库全名
|
||||
/// </summary>
|
||||
[JsonProperty("full_name")]
|
||||
public required string FullName { get; set; }
|
||||
public string FullName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库描述
|
||||
/// </summary>
|
||||
[JsonProperty("description")]
|
||||
public required string Description { get; set; }
|
||||
public string Description { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库是否为空
|
||||
|
|
@ -388,7 +388,7 @@ namespace CodeRelease.Model
|
|||
/// 父仓库
|
||||
/// </summary>
|
||||
[JsonProperty("parent")]
|
||||
public required object Parent { get; set; }
|
||||
public object Parent { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否为镜像仓库
|
||||
|
|
@ -406,55 +406,55 @@ namespace CodeRelease.Model
|
|||
/// 仓库语言
|
||||
/// </summary>
|
||||
[JsonProperty("language")]
|
||||
public required string Language { get; set; }
|
||||
public string Language { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库语言URL
|
||||
/// </summary>
|
||||
[JsonProperty("languages_url")]
|
||||
public required string LanguagesUrl { get; set; }
|
||||
public string LanguagesUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库HTML URL
|
||||
/// </summary>
|
||||
[JsonProperty("html_url")]
|
||||
public required string HtmlUrl { get; set; }
|
||||
public string HtmlUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库API URL
|
||||
/// </summary>
|
||||
[JsonProperty("url")]
|
||||
public required string Url { get; set; }
|
||||
public string Url { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库链接
|
||||
/// </summary>
|
||||
[JsonProperty("link")]
|
||||
public required string Link { get; set; }
|
||||
public string Link { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库SSH URL
|
||||
/// </summary>
|
||||
[JsonProperty("ssh_url")]
|
||||
public required string SshUrl { get; set; }
|
||||
public string SshUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库克隆 URL
|
||||
/// </summary>
|
||||
[JsonProperty("clone_url")]
|
||||
public required string CloneUrl { get; set; }
|
||||
public string CloneUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 原始 URL
|
||||
/// </summary>
|
||||
[JsonProperty("original_url")]
|
||||
public required string OriginalUrl { get; set; }
|
||||
public string OriginalUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库网站
|
||||
/// </summary>
|
||||
[JsonProperty("website")]
|
||||
public required string Website { get; set; }
|
||||
public string Website { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 星标数量
|
||||
|
|
@ -496,7 +496,7 @@ namespace CodeRelease.Model
|
|||
/// 默认分支
|
||||
/// </summary>
|
||||
[JsonProperty("default_branch")]
|
||||
public required string DefaultBranch { get; set; }
|
||||
public string DefaultBranch { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否存档
|
||||
|
|
@ -526,7 +526,7 @@ namespace CodeRelease.Model
|
|||
/// 权限信息
|
||||
/// </summary>
|
||||
[JsonProperty("permissions")]
|
||||
public required Permissions Permissions { get; set; }
|
||||
public Permissions Permissions { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否有问题跟踪
|
||||
|
|
@ -538,7 +538,7 @@ namespace CodeRelease.Model
|
|||
/// 内部问题跟踪器
|
||||
/// </summary>
|
||||
[JsonProperty("internal_tracker")]
|
||||
public required InternalTracker InternalTracker { get; set; }
|
||||
public InternalTracker InternalTracker { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否有Wiki
|
||||
|
|
@ -562,7 +562,7 @@ namespace CodeRelease.Model
|
|||
/// 项目模式
|
||||
/// </summary>
|
||||
[JsonProperty("projects_mode")]
|
||||
public required string ProjectsMode { get; set; }
|
||||
public string ProjectsMode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否有发布
|
||||
|
|
@ -634,7 +634,7 @@ namespace CodeRelease.Model
|
|||
/// 默认合并样式
|
||||
/// </summary>
|
||||
[JsonProperty("default_merge_style")]
|
||||
public required string DefaultMergeStyle { get; set; }
|
||||
public string DefaultMergeStyle { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否默认允许维护者编辑
|
||||
|
|
@ -646,7 +646,7 @@ namespace CodeRelease.Model
|
|||
/// 头像URL
|
||||
/// </summary>
|
||||
[JsonProperty("avatar_url")]
|
||||
public required string AvatarUrl { get; set; }
|
||||
public string AvatarUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否为内部仓库
|
||||
|
|
@ -658,13 +658,13 @@ namespace CodeRelease.Model
|
|||
/// 镜像间隔
|
||||
/// </summary>
|
||||
[JsonProperty("mirror_interval")]
|
||||
public required string MirrorInterval { get; set; }
|
||||
public string MirrorInterval { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对象格式名称
|
||||
/// </summary>
|
||||
[JsonProperty("object_format_name")]
|
||||
public required string ObjectFormatName { get; set; }
|
||||
public string ObjectFormatName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 镜像更新时间
|
||||
|
|
@ -676,7 +676,7 @@ namespace CodeRelease.Model
|
|||
/// 仓库转移
|
||||
/// </summary>
|
||||
[JsonProperty("repo_transfer")]
|
||||
public required object RepoTransfer { get; set; }
|
||||
public object RepoTransfer { get; set; }
|
||||
}
|
||||
/// <summary>
|
||||
/// 仓库所有者
|
||||
|
|
@ -691,12 +691,12 @@ namespace CodeRelease.Model
|
|||
/// <summary>
|
||||
/// 登录名
|
||||
/// </summary>
|
||||
public required string Login { get; set; }
|
||||
public string Login { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 登录名称
|
||||
/// </summary>
|
||||
public required string LoginName { get; set; }
|
||||
public string LoginName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 来源ID
|
||||
|
|
@ -706,27 +706,27 @@ namespace CodeRelease.Model
|
|||
/// <summary>
|
||||
/// 全名
|
||||
/// </summary>
|
||||
public required string FullName { get; set; }
|
||||
public string FullName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 邮箱
|
||||
/// </summary>
|
||||
public required string Email { get; set; }
|
||||
public string Email { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 头像 URL
|
||||
/// </summary>
|
||||
public required string AvatarUrl { get; set; }
|
||||
public string AvatarUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// HTML URL
|
||||
/// </summary>
|
||||
public required string HtmlUrl { get; set; }
|
||||
public string HtmlUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 语言
|
||||
/// </summary>
|
||||
public required string Language { get; set; }
|
||||
public string Language { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否为管理员
|
||||
|
|
@ -761,22 +761,22 @@ namespace CodeRelease.Model
|
|||
/// <summary>
|
||||
/// 位置
|
||||
/// </summary>
|
||||
public required string Location { get; set; }
|
||||
public string Location { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 网站
|
||||
/// </summary>
|
||||
public required string Website { get; set; }
|
||||
public string Website { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 描述
|
||||
/// </summary>
|
||||
public required string Description { get; set; }
|
||||
public string Description { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 可见性
|
||||
/// </summary>
|
||||
public required string Visibility { get; set; }
|
||||
public string Visibility { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 粉丝数量
|
||||
|
|
@ -796,7 +796,7 @@ namespace CodeRelease.Model
|
|||
/// <summary>
|
||||
/// 用户名
|
||||
/// </summary>
|
||||
public required string Username { get; set; }
|
||||
public string Username { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -854,12 +854,12 @@ namespace CodeRelease.Model
|
|||
/// <summary>
|
||||
/// 登录名
|
||||
/// </summary>
|
||||
public required string Login { get; set; }
|
||||
public string Login { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 登录名称
|
||||
/// </summary>
|
||||
public required string LoginName { get; set; }
|
||||
public string LoginName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 来源ID
|
||||
|
|
@ -869,27 +869,27 @@ namespace CodeRelease.Model
|
|||
/// <summary>
|
||||
/// 全名
|
||||
/// </summary>
|
||||
public required string FullName { get; set; }
|
||||
public string FullName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 邮箱
|
||||
/// </summary>
|
||||
public required string Email { get; set; }
|
||||
public string Email { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 头像 URL
|
||||
/// </summary>
|
||||
public required string AvatarUrl { get; set; }
|
||||
public string AvatarUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// HTML URL
|
||||
/// </summary>
|
||||
public required string HtmlUrl { get; set; }
|
||||
public string HtmlUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 语言
|
||||
/// </summary>
|
||||
public required string Language { get; set; }
|
||||
public string Language { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否为管理员
|
||||
|
|
@ -924,22 +924,22 @@ namespace CodeRelease.Model
|
|||
/// <summary>
|
||||
/// 位置
|
||||
/// </summary>
|
||||
public required string Location { get; set; }
|
||||
public string Location { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 网站
|
||||
/// </summary>
|
||||
public required string Website { get; set; }
|
||||
public string Website { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 描述
|
||||
/// </summary>
|
||||
public required string Description { get; set; }
|
||||
public string Description { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 可见性
|
||||
/// </summary>
|
||||
public required string Visibility { get; set; }
|
||||
public string Visibility { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 粉丝数量
|
||||
|
|
@ -959,7 +959,7 @@ namespace CodeRelease.Model
|
|||
/// <summary>
|
||||
/// 用户名
|
||||
/// </summary>
|
||||
public required string Username { get; set; }
|
||||
public string Username { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,15 +5,15 @@
|
|||
/// <summary>
|
||||
/// 名字
|
||||
/// </summary>
|
||||
public required string Name { get; set; }
|
||||
public string Name { get; set; }
|
||||
/// <summary>
|
||||
/// make命令
|
||||
/// </summary>
|
||||
public required string MakeFile { get; set; }
|
||||
public string MakeFile { get; set; }
|
||||
/// <summary>
|
||||
/// 下载后地址
|
||||
/// </summary>
|
||||
public required string BrowserDownloadFileUrl { get; set; }
|
||||
public string BrowserDownloadFileUrl { get; set; }
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user