mirror of https://github.com/leiurayer/downkyi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
423 B
20 lines
423 B
namespace DownKyi.Core.BiliApi.Zone
|
|
{
|
|
public class ZoneAttr
|
|
{
|
|
public int Id { get; }
|
|
public string Type { get; }
|
|
public string Name { get; }
|
|
public int ParentId { get; }
|
|
|
|
public ZoneAttr(int id, string type, string name, int parentId = 0)
|
|
{
|
|
Id = id;
|
|
Type = type;
|
|
Name = name;
|
|
ParentId = parentId;
|
|
}
|
|
|
|
}
|
|
}
|