mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
19 lines
347 B
C#
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
|
|
}
|
|
} |