9 lines
176 B
C#
9 lines
176 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AccountManagement.Application.Contracts.Account;
|
|
|
|
public class EditAccount : CreateAccount
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
} |