#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Model.Sync
{
    public class SyncTarget
    {
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string Name { get; set; }
        /// 
        /// Gets or sets the identifier.
        /// 
        /// The identifier.
        public string Id { get; set; }
    }
}