Home / ModelData / BusinessModel / BaseAndInterface / I_URLcs.cs
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; } } }