mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 08:26:33 +00:00
10 lines
254 B
C#
10 lines
254 B
C#
using Azaion.Common.Entities;
|
|
|
|
namespace Azaion.Common.Requests;
|
|
|
|
public class GetResourceRequest
|
|
{
|
|
public string Password { get; set; } = null!;
|
|
public string HardwareId { get; set; } = null!;
|
|
public ResourceEnum ResourceEnum { get; set; }
|
|
} |