Files
mixtape/zero.Core/Entities/Lists/ListCollection.cs
T
2020-04-29 13:18:53 +02:00

17 lines
283 B
C#

using System;
namespace zero.Core.Entities
{
public class ListCollection
{
public string Alias { get; set; }
public Type Type { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Icon { get; set; }
}
}