12 lines
205 B
C#
12 lines
205 B
C#
namespace Shared.Models.Online.KinoPub
|
|
{
|
|
public struct File
|
|
{
|
|
public string quality { get; set; }
|
|
|
|
public string file { get; set; }
|
|
|
|
public Url url { get; set; }
|
|
}
|
|
}
|