Files
RAGECOOP-V/RageCoop.Server/FileTransfer.cs

11 lines
248 B
C#
Raw Permalink Normal View History

2022-09-08 12:41:56 -07:00
namespace RageCoop.Server
{
internal class FileTransfer
{
public int ID { get; set; }
public float Progress { get; set; }
public string Name { get; set; }
2022-09-08 12:41:56 -07:00
public bool Cancel { get; set; } = false;
}
}