summaryrefslogtreecommitdiff
path: root/Models/GroupUserAccount.cs
blob: 706c2e9322a82334545d2e341e5673931759ab50 (plain)
1
2
3
4
5
6
7
8
9
10
using System.ComponentModel.DataAnnotations;

namespace LibraryAPI.Models {
    public class GroupUserAccount {
        public long GroupId { get; set; }
	public Group? Group { get; set; }
	public long UserAccountId { get; set; }
	public UserAccount? UserAccount { get; set; }
    }
}