mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 19:47:21 +01:00
11 lines
147 B
C#
11 lines
147 B
C#
using MareSynchronos.Models;
|
|
|
|
namespace MareSynchronos.FileCache;
|
|
|
|
|
|
public enum FileState
|
|
{
|
|
Valid,
|
|
RequireUpdate,
|
|
RequireDeletion
|
|
}
|