mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-09-13 12:43:17 +00:00
19 lines
314 B
C#
19 lines
314 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Data
|
|
{
|
|
public struct ResourceId
|
|
{
|
|
public bool Local;
|
|
public uint Id;
|
|
|
|
public ResourceId(bool local, uint id)
|
|
{
|
|
this.Id = id;
|
|
this.Local = local;
|
|
}
|
|
}
|
|
}
|