22 lines
601 B
C#
22 lines
601 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Microsoft.SelfService.Portal.Core.API.Models
|
|
{
|
|
public class EventModel : BaseModel
|
|
{
|
|
[Column(Order = 1)]
|
|
public Guid RunbookId { get; set; }
|
|
|
|
[Column(Order = 2)]
|
|
public string Class { get; set; }
|
|
[Column(Order = 3)]
|
|
public string Method { get; set; }
|
|
[Column(Order = 4)]
|
|
public string RestEndpointMethod { get; set; }
|
|
[Column(Order = 5)]
|
|
public string RestEndpointOperation { get; set; }
|
|
|
|
public RunbookModel Runbook { get; set; }
|
|
}
|
|
}
|