7 lines
103 B
C#
7 lines
103 B
C#
|
8 years ago
|
namespace Yavsc.Interfaces
|
||
|
|
{
|
||
|
|
public interface IOwned
|
||
|
|
{
|
||
|
|
string OwnerId { get; }
|
||
|
|
}
|
||
|
|
}
|