mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-06-13 22:48:42 +00:00
16 lines
299 B
C#
16 lines
299 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Esiur.Protocol;
|
|
using Esiur.Resource;
|
|
|
|
namespace Esiur.Tests.Deadlock.Server
|
|
{
|
|
[Resource]
|
|
public partial class Resource1
|
|
{
|
|
[Export] public Resource1 res1;
|
|
[Export] public Resource2 res2;
|
|
}
|
|
}
|