12 lines
253 B
C#
Raw Normal View History

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; }
}
}