summaryrefslogtreecommitdiff
path: root/backend/Elements.Backend/DTOs/ElementDTO.cs
blob: 9826c83bb2bdbec482bf06d07c4fc706799eee2b (plain)
1
2
3
4
5
6
7
8
9
10
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; }
}