mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
15 lines
198 B
C#
15 lines
198 B
C#
namespace Roblox.Common.Mail.Pop3;
|
|
|
|
public struct EmailUid
|
|
{
|
|
public int EmailId;
|
|
|
|
public string Uid;
|
|
|
|
public EmailUid(int EmailId, string Uid)
|
|
{
|
|
this.EmailId = EmailId;
|
|
this.Uid = Uid;
|
|
}
|
|
}
|