15 lines
449 B
C#
15 lines
449 B
C#
namespace Shared.Contracts.Account;
|
|
/// </summary>
|
|
/// این DTO هیچ وابستگی به DbContext یا Entity ندارد
|
|
/// DTO مینیمال برای انتقال اطلاعات پایه حساب کاربری بین ماژولها
|
|
/// <summary>
|
|
public class AccountBasicDto
|
|
{
|
|
public bool IsActive { get; init; }
|
|
public string Fullname { get; init; }
|
|
public string Username { get; init; }
|
|
public long Id { get; init; }
|
|
}
|
|
|
|
|