initial commit
This commit is contained in:
21
Models/EventModel.cs
Normal file
21
Models/EventModel.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user