dotnet-cqrs/Demo/DynamicQueries/Contact.cs

16 lines
278 B
C#
Raw Normal View History

2021-02-02 19:32:39 -05:00
using System;
2021-02-02 19:01:29 -05:00
namespace Demo.DynamicQueries
{
public class Contact
{
public long Id { get; set; }
public string DisplayName { get; set; }
}
2021-02-02 19:32:39 -05:00
public class SearchContactParams
2021-02-02 19:01:29 -05:00
{
2021-02-02 19:32:39 -05:00
public string SearchDisplayName { get; set; }
2021-02-02 19:01:29 -05:00
}
}