9 lines
179 B
C#
9 lines
179 B
C#
|
using System.Diagnostics.CodeAnalysis;
|
||
|
|
||
|
[Serializable]
|
||
|
public class Account {
|
||
|
[AllowNull]
|
||
|
public string id { get; set; }
|
||
|
[AllowNull]
|
||
|
public string username { get; set; }
|
||
|
}
|