8 lines
222 B
C#
Raw Normal View History

2025-01-24 19:17:26 -03:00
namespace phronCare.UIBlazor.Services.Tickets
{
internal class GenericParameters<T>
{
public string Param1 { get; set; } = string.Empty;
public string Param2 { get; set; } = string.Empty;
}
}