sledgemapper/Sledgemapper.Api/Core/Entities/SessionUser.cs
Michele Scandura 195533bce0
All checks were successful
continuous-integration/drone/push Build is passing
migrating session/map it to guid.
2021-09-16 16:51:07 +01:00

17 lines
324 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace Sledgemapper.Api.Models
{
public class SessionUser
{
[Key]
public int SessionUserId { get; set; }
[Required]
public Guid SessionId { get; set; }
[Required]
public int UserId { get; set; }
}
}