Files
2024-08-24 19:13:34 +03:30

13 lines
277 B
C#

using _0_Framework.Domain;
namespace AccountManagement.Domain.TicketAccessAccountAgg;
public class TicketAccessAccount:EntityBase
{
public TicketAccessAccount(long accountId)
{
AccountId = accountId;
}
public long AccountId { get; private set; }
}