Files
Backend-Api/AccountManagement.Application.Contracts/Account/EditClientAccount.cs
2025-12-15 13:05:05 +03:30

6 lines
148 B
C#

namespace AccountManagement.Application.Contracts.Account;
public class EditClientAccount : RegisterAccount
{
public long Id { get; set; }
}