24 lines
806 B
C#
24 lines
806 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.CameraBugReport
|
|
{
|
|
public class CameraBugReportViewModel
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
public string UserEmail { get; set; }
|
|
public long? AccountId { get; set; }
|
|
public string DeviceModel { get; set; }
|
|
public string AppVersion { get; set; }
|
|
public CameraBugReportType Type { get; set; }
|
|
public CameraBugPriority Priority { get; set; }
|
|
public CameraBugReportStatus Status { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
public DateTime? UpdateDate { get; set; }
|
|
public int LogsCount { get; set; }
|
|
public int ScreenshotsCount { get; set; }
|
|
}
|
|
}
|
|
|