mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-29 00:59:47 +00:00
14 lines
454 B
C#
14 lines
454 B
C#
namespace AIStudio.Settings;
|
|
|
|
public readonly record struct Profile(uint Num, string Id, string Name, string NeedToKnow, string Actions)
|
|
{
|
|
#region Overrides of ValueType
|
|
|
|
/// <summary>
|
|
/// Returns a string that represents the profile in a human-readable format.
|
|
/// </summary>
|
|
/// <returns>A string that represents the profile in a human-readable format.</returns>
|
|
public override string ToString() => this.Name;
|
|
|
|
#endregion
|
|
} |