Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
using Company.Application.Data.Entities;
using System;
namespace Company.Application.Dto
{
public class ApplicationUserRoleDto
{
public Guid Id { get; set; }
/// <summary>
/// Kullanıcı bilgisi
/// </summary>
public ApplicationUser User { get; set; }
/// <summary>
/// Role bilgisi
/// </summary>
public ApplicationRole Role { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment