Skip to content

Commit

Permalink
add TaskProcessor #3
Browse files Browse the repository at this point in the history
  • Loading branch information
MandelV committed Dec 6, 2018
1 parent d8e1f01 commit 0299b67
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Model/TaskProcessor.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Model
{
public class TaskProcessor
{
Queue<Task> tasks;

public TaskProcessor()
{

}
}
}

0 comments on commit 0299b67

Please sign in to comment.