Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Common/IOCOptions/ElasticSearchOptions.cs

15 lines
301 B
C#
Raw Normal View History

2021-10-10 17:30:31 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2021-10-10 17:52:23 +08:00
namespace Yi.Framework.Common.IOCOptions
2021-10-10 17:30:31 +08:00
{
public class ElasticSearchOptions
{
public string Url { get; set; }
public string IndexName { get; set; }
}
}