20 lines
652 B
C#
20 lines
652 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace AccountManagement.Application.Contracts.Ticket;
|
|
|
|
public class CreateTicket
|
|
{
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
public long SenderId { get; set; }
|
|
public long SubAccountId { get; set; }
|
|
public string ContractingPartyName { get; set; }
|
|
public string TicketType { get; set; }
|
|
public List<long> UploadedMediaIds { get; set; }
|
|
public long ScreenShotId { get; set; }
|
|
public long VoiceId { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
} |