11 lines
202 B
C#
11 lines
202 B
C#
namespace OF_DL.Models.Entities.Streams;
|
|
|
|
public class Streams
|
|
{
|
|
public List<ListItem> List { get; set; } = [];
|
|
|
|
public bool HasMore { get; set; }
|
|
|
|
public string? TailMarker { get; set; }
|
|
}
|