DocSpace-client/products/ASC.Files/Server/Model/SessionModel.cs

11 lines
266 B
C#
Raw Normal View History

2020-04-16 08:50:52 +00:00
namespace ASC.Files.Model
{
public class SessionModel
{
public string FileName { get; set; }
public long FileSize { get; set; }
public string RelativePath { get; set; }
public bool Encrypted { get; set; }
}
}