namespace AIStudio.Settings; public readonly record struct Profile(uint Num, string Id, string Name, string NeedToKnow, string Actions) { #region Overrides of ValueType /// /// Returns a string that represents the profile in a human-readable format. /// /// A string that represents the profile in a human-readable format. public override string ToString() => this.Name; #endregion }