1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.Storage/Entities/Profile/Nodes/NodePinCollectionEntity.cs
Robert c1dab91c16 Nodes - Changed storage to be based on generics
Nodes - Added XML docs to most types
2021-09-24 23:05:16 +02:00

9 lines
227 B
C#

namespace Artemis.Storage.Entities.Profile.Nodes
{
public class NodePinCollectionEntity
{
public int Id { get; set; }
public int Direction { set; get; }
public int Amount { get; set; }
}
}