Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mehmetalierol/2c772b0d1a841d998efb2ae50b3927a0 to your computer and use it in GitHub Desktop.
Save mehmetalierol/2c772b0d1a841d998efb2ae50b3927a0 to your computer and use it in GitHub Desktop.
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