Add backend structure with Docker support and initial configuration files
Java CI / build (push) Successful in 1m56s
Java CI / build (push) Successful in 1m56s
Signed-off-by: Dmitrii <computer@yawaflua.tech> Took 4 hours 25 minutes
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user