BaseOntologyEntity.cs

16 lines | 325 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
    {
        public string URL { set; get; }
        public string Title { set; get; }

    }
}