Files
Backend-Api/AccountManagement.Application.Contracts/Account/EditAccount.cs
2025-11-27 10:48:03 +03:30

9 lines
176 B
C#

using System.Collections.Generic;
namespace AccountManagement.Application.Contracts.Account;
public class EditAccount : CreateAccount
{
public long Id { get; set; }
}