12 lines
253 B
C#
12 lines
253 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AssortGenerator.Models.Input
|
|
{
|
|
public class CustomisationRoot
|
|
{
|
|
public int err { get; set; }
|
|
public object errmsg { get; set; }
|
|
public List<Suit> data { get; set; }
|
|
}
|
|
}
|