11 lines
200 B
C#

namespace OF_DL.Models.Entities.Subscriptions;
public class ListItem
{
public string Username { get; set; } = "";
public bool? IsRestricted { get; set; }
public long Id { get; set; }
}