11 lines
260 B
C#
11 lines
260 B
C#
|
|
using Meezi.Core.Interfaces;
|
||
|
|
|
||
|
|
namespace Meezi.Infrastructure.Data;
|
||
|
|
|
||
|
|
public class BranchContext : IBranchContext
|
||
|
|
{
|
||
|
|
public string? CafeId { get; set; }
|
||
|
|
public string? BranchId { get; set; }
|
||
|
|
public bool HasBranch => !string.IsNullOrEmpty(BranchId);
|
||
|
|
}
|