Skip to content

Commit

Permalink
OperationTicket
Browse files Browse the repository at this point in the history
  • Loading branch information
o.nadymov committed Feb 26, 2024
1 parent 87ed86b commit dc3424b
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ namespace Spoleto.BookApi.Interfaces.Models.OperationTicket
/// <summary>
/// Тикеты на обработку контейнеров объектов.
/// </summary>
public class OperationTicket
public class OperationTicket : PersistentObjectBase
{
/// <summary>
/// A ticket that is not found.
/// </summary>
public static readonly OperationTicket NotFound = new OperationTicket { Status = OperationTicketStatus.NoFound };

public Guid Id { get; set; }

public OperationTicketStatus Status { get; set; }

public DateTime StartTime { get; set; }
Expand Down

0 comments on commit dc3424b

Please sign in to comment.