BaseOntologyEntity.cs

20 lines | 385 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ModelData.BusinessModel.BaseAndInterface
{
    public abstract class BaseOntologyEntity : I_URLcs
    {
        const string BaseURL = "http://127.0.0.1/Jena/";



        public string URL { set; get; }
        public string Title { set; get; }

    }
}