22 lines
592 B
C#
22 lines
592 B
C#
using MongoDB.Bson.Serialization.Attributes;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace FireLance.Models
|
|
{
|
|
public class SaveDescriptorModel
|
|
{
|
|
[BsonId]
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid SaveDataID { get; set; }
|
|
public string SaveDataSHA256Hash { get; set; }
|
|
public Dictionary<string,uint> SaveDirectoryTreeSize { get; set; }
|
|
public int GameID { get; set; }
|
|
public string Description { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
public uint BackupSize { get; set; }
|
|
}
|
|
}
|
|
|