forked from sim0n00ps/OF-DL
11 lines
200 B
C#
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; }
|
|
}
|