using System.Collections.Generic; namespace AccountManagement.Application.Contracts.ProgramManagerApiResult; public record CreateProgramManagerUser(string FullName, string UserName, string Password, string Mobile, string Email, long? AccountId, List Roles); public record EditUserCommand(string FullName, string UserName, string Mobile, long AccountId, List Roles, bool IsActive);