15 lines
253 B
C#
15 lines
253 B
C#
using OF_DL.Models.Entities.Common;
|
|
|
|
namespace OF_DL.Models.Entities.Streams;
|
|
|
|
public class Medium
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public string? Type { get; set; }
|
|
|
|
public bool CanView { get; set; }
|
|
|
|
public Files? Files { get; set; }
|
|
}
|