forked from sim0n00ps/OF-DL
11 lines
204 B
C#
11 lines
204 B
C#
namespace OF_DL.Models.Entities.Archived;
|
|
|
|
public class Archived
|
|
{
|
|
public List<ListItem> List { get; set; } = [];
|
|
|
|
public bool HasMore { get; set; }
|
|
|
|
public string? TailMarker { get; set; }
|
|
}
|