move hw set and queue offset to user rest entitiy

switch to body email set
This commit is contained in:
Alex Bezdieniezhnykh
2025-05-02 11:29:56 +03:00
parent 0458739126
commit 289344799e
4 changed files with 41 additions and 13 deletions
@@ -0,0 +1,9 @@
using Azaion.Common.Entities;
namespace Azaion.Common.Requests;
public class SetUserQueueOffsetsRequest
{
public string Email { get; set; } = null!;
public UserQueueOffsets Offsets { get; set; } = null!;
}