I_URLcs.cs

16 lines | 274 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
{
    interface I_URLcs
    {
        string Title { get; }

        string URL { set;  get; }
    }
}