chore: 添加枚举注释

This commit is contained in:
uye
2023-10-13 16:50:57 +08:00
parent 69b93fbeee
commit e033e220b6

View File

@@ -1,3 +1,16 @@
// <copyright file="ResourceUpdater.cs" company="MaaAssistantArknights">
// MaaWpfGui - A part of the MaaCoreArknights project
// Copyright (C) 2021 MistEO and Contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY
// </copyright>
using System;
using System.Collections.Generic;
using System.IO;
@@ -41,8 +54,19 @@ namespace MaaWpfGui.Models
public enum UpdateResult
{
/// <summary>
/// update resource success
/// </summary>
Success,
/// <summary>
/// update resource failed
/// </summary>
Failed,
/// <summary>
/// resource not modified
/// </summary>
NotModified,
}