mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-21 15:53:02 +01:00
11 lines
222 B
C#
11 lines
222 B
C#
using System;
|
|
|
|
namespace Marr.Data.Mapping
|
|
{
|
|
public class RelationshipInfo : IRelationshipInfo
|
|
{
|
|
public RelationshipTypes RelationType { get; set; }
|
|
|
|
public Type EntityType { get; set; }
|
|
}
|
|
}
|