using System; using System.Collections.Generic; using System.Text; namespace Pole.Sagas.Storage.PostgreSql { public class ActivityAndSagaEntity { public string ActivityId { get; set; } public string SagaId { get; set; } public string ServiceName { get; set; } public int Order { get; set; } public string Status { get; set; } public string ParameterData { get; set; } public int OvertimeCompensateTimes { get; set; } public int CompensateTimes { get; set; } public string ActivityName { get; set; } } }