mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-21 17:11:30 +00:00
11 lines
213 B
C#
11 lines
213 B
C#
|
using FSO.Files.Utils;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace FSO.Server.Api.Core.Models
|
|||
|
{
|
|||
|
public class FSOUpdateManifest {
|
|||
|
public string Version;
|
|||
|
public List<FileDiff> Diffs;
|
|||
|
}
|
|||
|
}
|