15 lines
406 B
C#
15 lines
406 B
C#
namespace SharedProject.models;
|
|
|
|
public class Avatar
|
|
{
|
|
public uint Id { get; set; }
|
|
public string? IdString { get; set; }
|
|
public string? FullName { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Variant { get; set; }
|
|
public string? AcquireMethod { get; set; }
|
|
|
|
public override string ToString() {
|
|
return $"{Id}: {FullName}, {AcquireMethod}";
|
|
}
|
|
} |