9 lines
231 B
C#
9 lines
231 B
C#
namespace EnotaryoPH.Web.Pages.Shared.Components.NotaryoSteps
|
|
{
|
|
public class NotaryoStep
|
|
{
|
|
public bool IsActive { get; set; }
|
|
public string Name { get; set; }
|
|
public int Step { get; set; }
|
|
}
|
|
} |