forked from sim0n00ps/OF-DL
17 lines
307 B
C#
17 lines
307 B
C#
using OF_DL.Models.Entities.Common;
|
|
|
|
namespace OF_DL.Models.Entities.Stories;
|
|
|
|
public class Medium
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public string? Type { get; set; }
|
|
|
|
public bool CanView { get; set; }
|
|
|
|
public DateTime? CreatedAt { get; set; }
|
|
|
|
public Files Files { get; set; } = new();
|
|
}
|