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

24 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Syski.Data
{
public class ApplicationUserSystems
{
public string UserId { get; set; }
public ApplicationUser User { get; set; }
public Guid SystemId { get; set; }
public System System { get; set; }
public Guid? CategoryId { get; set; }
public ApplicationUserSystemCategory Category { get; set; }
}
}