10 lines
232 B
C#
10 lines
232 B
C#
using Domain.Interfaces;
|
|
|
|
namespace Domain;
|
|
public class Project
|
|
{
|
|
public Guid Id { get; set; }
|
|
public IEnumerable<ILayer> Layers { get; set; } = [];
|
|
public uint Width { get; set; }
|
|
public uint Height { get; set; }
|
|
} |