忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,50 +1,50 @@
using Newtonsoft.Json;
using System.Collections.Generic;
namespace UEditor.Core
{
public class UEditorResult
{
[JsonProperty("state")]
public string State { get; set; }
[JsonProperty("list")]
public IEnumerable<UEditorFileList> List { get; set; }
[JsonProperty("start")]
public int? Start { get; set; }
[JsonProperty("size")]
public int? Size { get; set; }
[JsonProperty("source")]
public string Source { get; set; }
[JsonProperty("total")]
public int? Total { get; set; }
[JsonProperty("url")]
public string Url { get; set; }
[JsonProperty("title")]
public string Title { get; set; }
[JsonProperty("original")]
public string Original { get; set; }
[JsonProperty("error")]
public string Error { get; set; }
}
public class UEditorFileList
{
[JsonProperty("state")]
public string State { get; set; }
[JsonProperty("source")]
public string Source { get; set; }
[JsonProperty("url")]
public string Url { get; set; }
}
}
using Newtonsoft.Json;
using System.Collections.Generic;
namespace UEditor.Core
{
public class UEditorResult
{
[JsonProperty("state")]
public string State { get; set; }
[JsonProperty("list")]
public IEnumerable<UEditorFileList> List { get; set; }
[JsonProperty("start")]
public int? Start { get; set; }
[JsonProperty("size")]
public int? Size { get; set; }
[JsonProperty("source")]
public string Source { get; set; }
[JsonProperty("total")]
public int? Total { get; set; }
[JsonProperty("url")]
public string Url { get; set; }
[JsonProperty("title")]
public string Title { get; set; }
[JsonProperty("original")]
public string Original { get; set; }
[JsonProperty("error")]
public string Error { get; set; }
}
public class UEditorFileList
{
[JsonProperty("state")]
public string State { get; set; }
[JsonProperty("source")]
public string Source { get; set; }
[JsonProperty("url")]
public string Url { get; set; }
}
}