16 lines
		
	
	
		
			347 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			347 B
		
	
	
	
		
			C#
		
	
	
| using System;
 | |
| using System.ComponentModel.DataAnnotations.Schema;
 | |
| 
 | |
| namespace IRaCIS.Core.Domain.Models
 | |
| {
 | |
|     [Table("UserRole")]
 | |
|     public partial class UserRole : Entity
 | |
|     {
 | |
|         public Role Role { get; set; }
 | |
| 
 | |
|         public User User { get; set; }
 | |
|         public Guid UserId { get; set; }
 | |
|         public Guid RoleId { get; set; }
 | |
|     }
 | |
| }
 |