// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // namespace Astral.Services.Dtos; /// /// Data transfer object for user group. /// public class UserGroupDto { /// /// User group id. /// public Guid Id { get; set; } /// /// When the user group was created. /// public DateTime CreationDate { get; set; } /// /// When the user group was created in ticks. /// public long CreationDateTicks { get; set; } /// /// The title of the user group. /// public string Title { get; set; } /// /// The description of the user group. /// public string Description { get; set; } /// /// Whether this is an internal-use user group. /// public bool Internal { get; set; } }