mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-01-02 10:43:31 +00:00
19 lines
493 B
C#
19 lines
493 B
C#
namespace Artemis.Storage.Entities.Profile.Nodes;
|
|
|
|
public class NodePinCollectionEntity
|
|
{
|
|
public NodePinCollectionEntity()
|
|
{
|
|
}
|
|
|
|
public NodePinCollectionEntity(NodePinCollectionEntity nodePinCollectionEntity)
|
|
{
|
|
Id = nodePinCollectionEntity.Id;
|
|
Direction = nodePinCollectionEntity.Direction;
|
|
Amount = nodePinCollectionEntity.Amount;
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
public int Direction { set; get; }
|
|
public int Amount { get; set; }
|
|
} |