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/DataModelPathEntity.cs
SpoinkyNL e812929215 Plugins - Implemented features
Core - Removed Stylet dependency for #500
2020-11-11 23:53:52 +01:00

19 lines
347 B
C#

using System;
namespace Artemis.Storage.Entities.Profile
{
public class DataModelPathEntity
{
public string Path { get; set; }
public string DataModelId { get; set; }
public PathWrapperType WrapperType { get; set; }
}
public enum PathWrapperType
{
None,
List,
Event
}
}