12 lines
270 B
C#
12 lines
270 B
C#
|
|
namespace CompanyManagment.App.Contracts.CameraBugReport
|
|
{
|
|
public class EditCameraBugReportCommand
|
|
{
|
|
public long Id { get; set; }
|
|
public CameraBugPriority Priority { get; set; }
|
|
public CameraBugReportStatus Status { get; set; }
|
|
}
|
|
}
|
|
|