17 lines
504 B
C#
17 lines
504 B
C#
using System;
|
|
|
|
namespace FasdCockpitCommunicationDemo
|
|
{
|
|
public class TicketOverviewRelationDefinition
|
|
{
|
|
public Guid TicketId { get; set; }
|
|
public Guid UserId { get; set; }
|
|
public string DisplayName { get; set; }
|
|
public string Summary { get; set; }
|
|
public string StatusId { get; set; }
|
|
public string UserDisplayName { get; set; }
|
|
public string UserAccount { get; set; }
|
|
public string UserDomain { get; set; }
|
|
}
|
|
}
|