namespace Elements.Backend.DTOs; public class ElementDTO { public int Id { get; init; } public string Name { get; set; } public string CreatorName { get; set; } public int State { get; set; } public string Icon { get; set; } }