drinkrate/DrinkRateAPI/ApiModels/UserProfile/UserProfilePut.cs
2025-08-11 22:08:13 +02:00

9 lines
No EOL
197 B
C#

namespace DrinkRateAPI.ApiModels.UserProfile;
public class UserProfilePut : UserProfileSelfPut
{
/// <summary>
/// Is user admin
/// </summary>
public bool? IsAdmin { get; set; }
}