21 lines
596 B
C#
21 lines
596 B
C#
using System.Collections.Generic;
|
|
using _0_Framework.Domain;
|
|
using AccountManagement.Domain.ClientResponseMediaAgg;
|
|
using AccountManagement.Domain.TicketAgg;
|
|
|
|
namespace AccountManagement.Domain.ClientResponseAgg;
|
|
|
|
public class ClientResponse:EntityBase
|
|
{
|
|
public ClientResponse(string response, long ticketId)
|
|
{
|
|
Response = response;
|
|
TicketId = ticketId;
|
|
}
|
|
|
|
public long TicketId { get; private set; }
|
|
public string Response { get; private set; }
|
|
public Ticket Ticket { get; set; }
|
|
public List<ClientResponseMedia> ClientResponseMedias { get; set; }
|
|
|
|
} |