forked from sim0n00ps/OF-DL
17 lines
296 B
C#
17 lines
296 B
C#
using OF_DL.Models.Entities.Common;
|
|
|
|
namespace OF_DL.Models.Entities.Archived;
|
|
|
|
public class Medium
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public string? Type { get; set; }
|
|
|
|
public bool CanView { get; set; }
|
|
|
|
public Files? Files { get; set; }
|
|
|
|
public string? Preview { get; set; }
|
|
}
|