16 lines
398 B
C#
16 lines
398 B
C#
using _0_Framework.Domain;
|
|
|
|
namespace AccountManagement.Domain.SubAccountRoleAgg;
|
|
|
|
public class SubAccountRoleWorkshop:EntityBase
|
|
{
|
|
public SubAccountRoleWorkshop(long workshopId, long subAccountId)
|
|
{
|
|
WorkshopId = workshopId;
|
|
SubAccountId = subAccountId;
|
|
}
|
|
|
|
public long WorkshopId { get; set; }
|
|
public long SubAccountId { get; set; }
|
|
public SubAccountRole SubAccountRole { get; set; }
|
|
} |