sledgemapper/Sledgemapper.Api/Core/Entities/SessionUser.cs
Michele Scandura f12132009f
All checks were successful
continuous-integration/drone/push Build is passing
Send position and overlay
2021-09-17 12:37:02 +01:00

17 lines
325 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 Guid UserId { get; set; }
}
}