1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CZFW.MDB.Model
- {
- public class SEOShareModel
- {
- public string Url { get; set; }
- public string SEOTitle { get; set; }
- public string SEODescription { get; set; }
- public string SEOKeywords { get; set; }
- public string ShareUrl { get; set; }
- public string ShareTitle { get; set; }
- public string ShareDescription { get; set; }
- public string ShareImage { get; set; }
- public string PrettyUrl { get; set; }
- }
- }
|