mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-22 18:49:44 +00:00
10 lines
204 B
C#
10 lines
204 B
C#
using Daybreak.API.Interop;
|
|
|
|
namespace Daybreak.API.Models;
|
|
|
|
public sealed class AddressState
|
|
{
|
|
public required string Name { get; init; }
|
|
public required PointerValue Address { get; init; }
|
|
}
|