Y2S2-Syski/syski_api/uk.co.syski.data/ApplicationUserSystemCategory.cs
2020-06-09 21:02:14 +01:00

18 lines
310 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Syski.Data
{
public class ApplicationUserSystemCategory
{
public Guid Id { get; set; }
public string Name { get; set; }
public IEnumerable<ApplicationUserSystems> Systems { get; set; }
}
}