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