namespace JSONAPI.Documents
{
///
/// Default implementation of IResourceIdentifier
///
public class ResourceIdentifier : IResourceIdentifier
{
public string Type { get; private set; }
public string Id { get; private set; }
///
/// Creates a new ResourceIdentifier
///
///
///
public ResourceIdentifier(string type, string id)
{
Type = type;
Id = id;
}
}
}