Java CI / build (push) Successful in 1m56s
Signed-off-by: Dmitrii <computer@yawaflua.tech> Took 4 hours 25 minutes
15 lines
348 B
C#
15 lines
348 B
C#
namespace SpMega.Backend.Persistent.Models.DTO;
|
|
|
|
public class PropertyDto
|
|
{
|
|
public string Name { get; set; }
|
|
public string Value { get; set; }
|
|
public string Signature { get; set; }
|
|
}
|
|
|
|
public class MojangDto
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public List<PropertyDto> Properties { get; set; }
|
|
} |