12 lines
203 B
C#
12 lines
203 B
C#
namespace Shared.Models.Online.PiTor
|
|
{
|
|
public struct FileStat
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Path { get; set; }
|
|
|
|
public long Length { get; set; }
|
|
}
|
|
}
|