17 lines
283 B
C#
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; }
|
|
}
|
|
} |