| 123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Diligent.WebAPI.Data.Entities
- {
- public class UserCategories
- {
- public int Id { get; set; }
-
- public int UserId { get; set; }
- public Category Category { get; set; }
-
- public int CategoryId { get; set; }
- }
- }
|