mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 10:09:24 +00:00
9 lines
163 B
C#
9 lines
163 B
C#
namespace Oqtane.Models
|
|
{
|
|
public class GenericResponse
|
|
{
|
|
public bool Success { get; set; }
|
|
public string Message { get; set; }
|
|
}
|
|
}
|